de1440436efd3bb88d30248a87786e72f74e4eee,src/test/java/com/helger/pdflayout/element/vbox/PLVBoxTest.java,PLVBoxTest,testAutoHeightAdvanced,#,153

Before Change


            }
    aPS1.addElement (new PLPageBreak (true));

    for (int g = 0; g < 2; g++)
      for (int h = 0; h < 2; h++)
        for (int i = 0; i < 2; ++i)
          for (int j = 0; j < 2; ++j)
            for (int k = 0; k < 2; ++k)
            {
              final PLVBox aVBox = new PLVBox ().setVertSplittable (h == 0).setFullWidth (g == 0);
              aVBox.addRow (new PLText ("This should be a " +
                                        (h == 0 ? "vertically splittable " : "") +
                                        (g == 0 ? "full-width " : "") +

After Change


          }
    aPS1.addElement (new PLPageBreak (true));

    for (int h = 0; h < 2; h++)
      for (int i = 0; i < 2; ++i)
        for (int j = 0; j < 2; ++j)
          for (int k = 0; k < 2; ++k)
          {
            final PLVBox aVBox = new PLVBox ().setFullWidth (h == 0);
            aVBox.addRow (new PLText ("This should be a " +
                                      (h == 0 ? "full-width " : "") +
                                      "example.",